home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
i
/
imagefxv2.1a.lha
/
ImageFX
/
Rexx
/
AutoFX
/
Load.ifx
< prev
next >
Wrap
Text File
|
1996-03-02
|
300b
|
21 lines
/*
* Load.ifx
* Loads the main and swap images. (Doesn't
* load the swap image if none is specified).
*
* by Steve Tibbett
*/
OPTIONS RESULTS
MainName=word(Arg(1),2)
SwapName=word(Arg(1),3)
LoadBuffer Force MainName
IF (SwapName ~= "-") THEN DO
Swap
LoadBuffer Force SwapName
Swap
END